home *** CD-ROM | disk | FTP | other *** search
- /*t MSDOSDIR -- Define DS-DOS Disk Directory Entry (Ver 2.xx) */
- /* Lattice 19-Jul-84 17:40 */
- typedef struct {
-
- char Dir_name[8];
- char Dir_ext[3];
- char Dir_attr;
- char Dir_pad[10];
-
- struct {
- unsigned Dt_hr : 5;
- unsigned Dt_mn : 6;
- unsigned Dt_sc : 5;
- } Dir_time;
- struct {
- unsigned Dt_yr : 7;
- unsigned Dt_mo : 4;
- unsigned Dt_da : 5;
- } Dir_date;
-
- unsigned int Dir_first;
- long Dir_size;
-
- } MSDOS_Dir;
-
- #define Dirattr_RO 0x01
- #define Dirattr_HID 0x02
- #define Dirattr_SYS 0x04
- #define Dirattr_VOL 0x08
- #define Dirattr_DIR 0x10
- #define Dirattr_ARC 0x20
-